home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / foo2oak-wrapper < prev    next >
Text File  |  2008-09-09  |  17KB  |  692 lines

  1. #!/bin/sh
  2.  
  3. #* Copyright (C) 2003-2006  Rick Richardson
  4. #*
  5. #* This program is free software; you can redistribute it and/or modify
  6. #* it under the terms of the GNU General Public License as published by
  7. #* the Free Software Foundation; either version 2 of the License, or
  8. #* (at your option) any later version.
  9. #*
  10. #* This program is distributed in the hope that it will be useful,
  11. #* but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. #* GNU General Public License for more details.
  14. #*
  15. #* You should have received a copy of the GNU General Public License
  16. #* along with this program; if not, write to the Free Software
  17. #* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. #*
  19. #* Authors: Rick Richardson <rick.richardson@comcast.net>
  20.  
  21. VERSION='$Id: foo2oak-wrapper.in,v 1.44 2008/05/03 14:30:40 rick Exp $'
  22.  
  23. #
  24. # Printer Notes:
  25. #
  26. #    HP Color LaserJet 1500:    -z0 (mirror bytes)
  27. #
  28. #    Kyocera Mita KM-1635:    -z1 (rotate 90)
  29. #
  30.  
  31. PROGNAME="$0"
  32. BASENAME=`basename $PROGNAME`
  33. PREFIX=/usr
  34. SHARE=$PREFIX/share/foo2oak
  35. PATH=$PATH:/sw/bin:/opt/local/bin
  36.  
  37. #
  38. #    Log the command line, for debugging and problem reports
  39. #
  40. if [ -x /usr/bin/logger ]; then
  41.     logger -t "$BASENAME" -p lpr.info -- "$BASENAME $@" </dev/null
  42. fi
  43.  
  44. usage() {
  45.     cat <<EOF
  46. Usage:
  47.     $BASENAME [options] [ps-file]
  48.  
  49.     Foomatic printer wrapper for the foo2oak printer driver.
  50.     This script reads a Postscript ps-file or standard input
  51.     and converts it to Oak Technoligies OAKT printer format.
  52.  
  53. Normal Options:
  54. -b bits           Bits per plane (1 or 2) [$BPP]
  55. -c                Print in color (else monochrome)
  56. -m media          Media code to send to printer [$MEDIA]
  57.                     0=auto 1=plain 2=preprinted 3=letterhead 4=graytrans
  58.                     5=prepunched 6=labels 7=bond 8=recycled 9=color
  59.                     10=cardstock 11=heavy 12=envelope 13=light 14=tough
  60.             15=vellum 16=rough 19=thick 20=highqual
  61. -p paper          Paper code [$PAPER]
  62.                     1=letter, 3=ledger, 5=legal, 6=statement, 7=executive,
  63.             8=A3, 9=A4, 11=A5, 12=B4, 13=B5jis, 14=folio, 19=env9,
  64.             20=env10, 27=envDL, 28=envC5, 30=envC4, 37=envMonarch,
  65.             257=A6, 258=B6, 259=B5iso, 260=env6
  66. -n copies         Number of copies [$COPIES]
  67. -r <xres>x<yres>  Set device resolution in pixels/inch [$RES]
  68. -s source         Source code to send to printer [$SOURCE]
  69.                     1=tray1, 4=manual, 7=auto
  70.             Code numbers may vary with printer model.
  71. -2/-3/-4/-6/-8/-10/-12/-14/-15/-16/-18
  72.                   Print with N-up (requires psutils)
  73. -o orient         For N-up: -op is portrait, -ol is landscape, -os is seascape.
  74.  
  75. Printer Tweaking Options:
  76. -u <xoff>x<yoff>  Set offset of upper left printable in pixels [varies]
  77. -l <xoff>x<yoff>  Set offset of lower right printable in pixels [varies]
  78. -L mask           Send logical clipping values from -u/-l in ZjStream [3]
  79.                   0=no, 1=Y, 2=X, 3=XY
  80. -z model          Model: 0=HP CLJ 1500, 1=KM-1635/KM-2035 [$MODEL]
  81.  
  82. Color Tweaking Options:
  83. -g gsopts         Additional options to pass to Ghostscript, such as
  84.                   -dDITHERPPI=nnn, etc.  May appear more than once. []
  85. -G profile.icm    Convert profile.icm to a Postscript CRD using icc2ps and
  86.                   adjust colors using the setcolorrendering PS operator.
  87.                   $SHARE/icm/ will be searched for profile.icm.
  88. -I intent         Select profile intent from ICM file [$INTENT]
  89.                   0=Perceptual, 1=Colorimetric, 2=Saturation, 3=Absolute
  90. -G gamma-file.ps  Prepend gamma-file to the Postscript input to perform
  91.                   color correction using the setcolortransfer PS operator.
  92.  
  93. Debugging Options:
  94. -S plane          Output just a single color plane from a color print [all]
  95.                   1=Cyan, 2=Magenta, 3=Yellow, 4=Black
  96. -D lvl            Set Debug level [$DEBUG]
  97. -V                $VERSION
  98. EOF
  99.  
  100.     exit 1
  101. }
  102.  
  103. #
  104. #       Report an error and exit
  105. #
  106. error() {
  107.     echo "$BASENAME: $1" >&2
  108.     exit 1
  109. }
  110.  
  111. dbgcmd() {
  112.     if [ $DEBUG -ge 1 ]; then
  113.         echo "$@" >&2
  114.     fi
  115.     "$@"
  116. }
  117.  
  118. #
  119. #    N-up-ify the job.  Requires psnup from psutils package
  120. #
  121. nup() {
  122.     case "$NUP" in
  123.     [2368]|1[0458])
  124.     tr '\r' '\n' | psnup $NUP_ORIENT -d2 -$NUP -m.3in -p$paper -q
  125.     ;;
  126.     [49]|1[26])
  127.     tr '\r' '\n' | psnup $NUP_ORIENT -d2 -$NUP -m.5in -p$paper -q
  128.     ;;
  129.     *)
  130.     error "Illegal call to nup()."
  131.     ;;
  132.     esac
  133. }
  134.  
  135. #
  136. #       Process the options
  137. #
  138.  
  139. # Try to use a local copy of GhostScript 8.54, if available.  Otherwise,
  140. # fallback to whatever the Linux distro has installed (usually 7.07)
  141. #
  142. # N.B. := operator used here, when :- would be better, because "ash"
  143. # doesn't have :-
  144. if gs.foo -v >/dev/null 2>&1; then
  145.         GSBIN=${GSBIN:-gs.foo}
  146. else
  147.         GSBIN=${GSBIN:-gs}
  148. fi
  149.  
  150. BPP=1
  151. CMDLINE="$*"
  152. DEBUG=0
  153. DUPLEX=1
  154. COLOR=
  155. COLORMODE=default
  156. MODEL=0
  157. QUALITY=wts
  158. MEDIA=1
  159. COPIES=1
  160. test -r /etc/papersize && PAPER=$(cat /etc/papersize)
  161. test "$PAPER" || PAPER=1
  162. RES=600x600
  163. SOURCE=7
  164. NUP=
  165. CLIP_UL=
  166. CLIP_LR=
  167. CLIP_LOG=
  168. BC=
  169. AIB=
  170. COLOR2MONO=
  171. GAMMAFILE=default
  172. INTENT=0
  173. GSOPTS=
  174. NUP_ORIENT=
  175. GSDEV=-sDEVICE=pbmraw
  176. # What mode to use if the user wants us to pick the "best" mode
  177. case `$GSBIN --version` in
  178. 7*)    DEFAULTCOLORMODE=10
  179.     ;;
  180. 8.1*)
  181.     DEFAULTCOLORMODE=10
  182.     QUALITY=1
  183.     ;;
  184. *)    DEFAULTCOLORMODE=10
  185.     ;;
  186. esac
  187. while getopts "1:23456789o:b:cC:d:g:l:u:L:m:n:p:q:r:s:z:ABS:D:G:I:Vh?" opt
  188. do
  189.     case $opt in
  190.     b)    BPP=$OPTARG;;
  191.     c)    COLOR=-c;;
  192.     d)    DUPLEX="$OPTARG";;
  193.     g)    GSOPTS="$GSOPTS $OPTARG";;
  194.     m)    MEDIA="$OPTARG";;
  195.     n)    COPIES="$OPTARG";;
  196.     p)    PAPER="$OPTARG";;
  197.     q)    QUALITY="$OPTARG";;
  198.     r)    RES="$OPTARG";;
  199.     s)    SOURCE="$OPTARG";;
  200.     z)    MODEL="$OPTARG";;
  201.     l)    CLIP_LR="-l $OPTARG";;
  202.     u)    CLIP_UL="-u $OPTARG";;
  203.     L)    CLIP_LOG="-L $OPTARG";;
  204.     A)    AIB=-A;;
  205.     B)    BC=-B;;
  206.     C)    COLORMODE="$OPTARG";;
  207.     S)    COLOR2MONO="-S$OPTARG";;
  208.     D)    DEBUG="$OPTARG";;
  209.     G)    GAMMAFILE="$OPTARG";;
  210.     I)    INTENT="$OPTARG";;
  211.     [234689])    NUP="$opt";;
  212.     [57])    error "Can't find acceptable layout for $opt-up";;
  213.     1)    case "$OPTARG" in
  214.         [024568])    NUP="1$OPTARG";;
  215.         *)    error "Can't find acceptable layout for 1$OPTARG-up";;
  216.         esac
  217.         ;;
  218.     o)    case "$OPTARG" in
  219.         l*)    NUP_ORIENT=-l;;
  220.         s*)    NUP_ORIENT=-r;;
  221.         p*|*)    NUP_ORIENT=;;
  222.         esac;;
  223.     V)    echo "$VERSION"; foo2oak -V; foo2zjs-pstops -V; exit 0;;
  224.     h|\?)
  225.         if [ "$CMDLINE" != "-?" -a "$CMDLINE" != -h ]; then
  226.             echo "Illegal command:"
  227.             echo "    $0 $CMDLINE"
  228.             echo
  229.         fi
  230.         usage;;
  231.     esac
  232. done
  233. shift `expr $OPTIND - 1`
  234.  
  235. #
  236. # If there is an argument left, take it as the file to print.
  237. # Else, the input comes from stdin.
  238. #
  239. if [ $# -ge 1 ]; then
  240.     if [ "$LPJOB" = "" ]; then
  241.     : # LPJOB="$1"
  242.     fi
  243.     exec < $1
  244. fi
  245.  
  246. #
  247. #    Select the ghostscript device to use
  248. #
  249. case "$BPP" in
  250. 1)    if [ "" = "$COLOR" ]; then
  251.         GSDEV=-sDEVICE=pbmraw
  252.     else
  253.         GSDEV=-sDEVICE=bitcmyk
  254.     fi
  255.     ;;
  256. 2)    if [ "" = "$COLOR" ];
  257.     then
  258.         GSDEV=-sDEVICE=pgmraw
  259.     else
  260.         GSDEV="-sDEVICE=cups -dcupsColorSpace=6 -dcupsBitsPerColor=2"
  261.     fi
  262.     ;;
  263. *)    error "Illegal number of bits per plane ($BPP)";;
  264. esac
  265.  
  266. #
  267. case "$QUALITY" in
  268. 0)
  269.     GSOPTS="-dCOLORSCREEN $GSOPTS"
  270.     ;;
  271. 1)
  272.     GSOPTS="-dCOLORSCREEN $GSOPTS"
  273.     ;;
  274. 2)
  275.     GSOPTS="-dMaxBitmap=500000000 $GSOPTS"
  276.     ;;
  277. wts)
  278.     GSOPTS="-dCOLORSCREEN -dMaxBitmap=500000000 $GSOPTS"
  279.     ;;
  280. esac
  281.  
  282. #
  283. #    Validate model code
  284. #
  285. case "$MODEL" in
  286. 0)    MIRROR=1; ROTATE90=0;;
  287. 1)    MIRROR=0; ROTATE90=1;;
  288. *)    error "Unknown model code $MODEL";;
  289. esac
  290.  
  291. #
  292. #    Validate media code
  293. #
  294. case "$MEDIA" in
  295. 0|auto)        MEDIA=0;;
  296. 1|plain)    MEDIA=1;;
  297. 2|preprinted)    MEDIA=2;;
  298. 3|letterhead)    MEDIA=3;;
  299. 4|transparency)    MEDIA=4;;
  300. 5|prepunched)    MEDIA=5;;
  301. 6|labels)    MEDIA=6;;
  302. 7|bond)        MEDIA=7;;
  303. 8|recylcled)    MEDIA=8;;
  304. 9|color)    MEDIA=9;;
  305. 10|cardstock)    MEDIA=10;;
  306. 11|heavy)    MEDIA=11;;
  307. 12|envelope)    MEDIA=12;;
  308. 13|light)    MEDIA=13;;
  309. 14|tough)    MEDIA=14;;
  310.  
  311. 15|vellum)    MEDIA=15;;
  312. 16|rough)    MEDIA=16;;
  313. 19|thick)    MEDIA=19;;
  314. 20|highqual)    MEDIA=20;;
  315. [0-9]*)        ;;
  316. *)        error "Unknown media code $MEDIA";;
  317. esac
  318.  
  319. #
  320. #    Validate source (InputSlot) code
  321. #
  322. case "$SOURCE" in
  323. 1|tray1)    SOURCE=1;;
  324. 4|manual|mp)    SOURCE=4;;
  325. 7|auto)        SOURCE=7;;
  326. [0-9]*)        ;;
  327. *)        error "Unknown source code $SOURCE";;
  328. esac
  329.  
  330. #
  331. #    Validate Duplex code
  332. #
  333. case "$DUPLEX" in
  334. 1|off|none)    DUPLEX=1;;
  335. 2|long*)    DUPLEX=2;;
  336. 3|short*)    DUPLEX=3;;
  337. [0-9]*)        ;;
  338. *)        error "Unknown duplex code $DUPLEX";;
  339. esac
  340.  
  341. #
  342. #    Validate Resolution
  343. #
  344. case "$RES" in
  345. 600x600)    ;;
  346. 1200x600)    ;;
  347. 2400x600)    ;;
  348. *)        error "Illegal resolution $RES";;
  349. esac
  350.  
  351. #
  352. #    Figure out the paper dimensions in pixels/inch, and set the
  353. #    default clipping region.
  354. #
  355. set_clipping() {
  356.     ulx=$1; uly=$2
  357.     lrx=$3; lry=$4
  358.  
  359.     # Set clipping region if it isn't already set
  360.     if [ "$CLIP_UL" = "" ]; then
  361.     case "$RES" in
  362.     600x600)    ulx=`expr $ulx / 2`;;
  363.     2400x600)    ulx=`expr $ulx \* 2`;;
  364.     esac
  365.     CLIP_UL="-u ${ulx}x${uly}"
  366.     fi
  367.     if [ "$CLIP_LR" = "" ]; then
  368.     case "$RES" in
  369.     600x600)    lrx=`expr $lrx / 2`;;
  370.     2400x600)    lrx=`expr $lrx \* 2`;;
  371.     esac
  372.     CLIP_LR="-l ${lrx}x${lry}"
  373.     fi
  374. }
  375.  
  376. case "$PAPER" in
  377. Custom*)
  378.         #%%BeginFeature: *CustomPageSize True
  379.         #216
  380.         #360
  381.         #0
  382.         #0
  383.         #0
  384.         #pop pop pop pop pop
  385.  
  386.         #%%BeginFeature: *CustomPageSize True
  387.         #792.000000 612.000000 1 0.000000 0.000000
  388.         #pop pop pop pop pop
  389.  
  390.         if [ $DEBUG = 0 ]; then
  391.             TMPFILE=/tmp/cus$$
  392.         else
  393.             TMPFILE=/tmp/custom.ps
  394.         fi
  395.         cat >$TMPFILE
  396.         exec <$TMPFILE
  397.  
  398.         tmp=`head -n 10000 $TMPFILE \
  399.             | sed -n '/CustomPageSize/{n;p;n;p;}' \
  400.             | tr '\n' ' '`
  401.         case "$tmp" in
  402.         [0-9]*\ [0-9]*)
  403.             XDIM=`echo "$tmp" | sed 's/ .*//'`
  404.             YDIM=`echo "$tmp" | sed -e 's/^[^ ]* //' -e 's/ .*//'`
  405.             ;;
  406.         *)
  407.             if [ $DEBUG = 0 ]; then rm -f $TMPFILE; fi
  408.             error "Custom page size [XY]DIM != 1-99999"
  409.             ;;
  410.         esac
  411.         XDIM=`dc -e "$XDIM 1200* 72/p"`
  412.         YDIM=`dc -e "$YDIM 600* 72/p"`
  413.         PAPER=296;      paper=letter;
  414.                 set_clipping 2 100     2 100
  415.         ;;
  416. 1|letter)    PAPER=1;    paper=letter;    XDIM="10200"; YDIM="6600"
  417.         set_clipping 140 100    140 100
  418.         ;;
  419. 3|ledger)    PAPER=3;    paper=ledger;    XDIM="20400"; YDIM="6600"
  420.         set_clipping 140 100    140 100
  421.         ;;
  422. 5|legal)    PAPER=5;    paper=legal;     XDIM="10200"; YDIM="8400"
  423.         set_clipping 140 100    140 100
  424.         ;;
  425. 6|statement)    PAPER=6;    paper=statement; XDIM="6600";  YDIM="5100"
  426.         set_clipping 140 100    140 100
  427.         ;;
  428. 7|executive)    PAPER=7;    paper=executive; XDIM="8700";  YDIM="6300"
  429.         set_clipping 140 100    140 100
  430.         ;;
  431. 8|a3|A3)    PAPER=8;    paper=a3;        XDIM="19842"; YDIM="7014"
  432.         set_clipping 160 100    160 100
  433.         ;;
  434. 9|a4|A4)    PAPER=9;    paper=a4;        XDIM="9920";  YDIM="7014"
  435.         set_clipping 160 100    160 100
  436.         ;;
  437. 11|a5|A5)    PAPER=11;    paper=a5;        XDIM="6992";  YDIM="4960"
  438.         set_clipping 140 100    140 100
  439.         ;;
  440. 12|b4|B4)    PAPER=12;    paper=b4;        XDIM="12142"; YDIM="8598"
  441.         set_clipping 140 100    140 100
  442.         ;;
  443. 13|b5jis|B5jis)    PAPER=13;    paper=b5;        XDIM="8598";  YDIM="6070"
  444.         set_clipping 140 100    140 100
  445.         ;;
  446. 14|folio|Folio)    PAPER=14;    paper=folio;     XDIM="9922";  YDIM="7796"
  447.         set_clipping 140 100    140 100
  448.         ;;
  449. 19|env9|"env#9")
  450.         PAPER=19;    paper=env9;      XDIM="4650";  YDIM="5362"
  451.         set_clipping 140 100    140 100
  452.         ;;
  453. 20|env10|"env#10")
  454.         PAPER=20;    paper=env10;     XDIM="4950";  YDIM="5700"
  455.         set_clipping 140 100    140 100
  456.         ;;
  457. 27|envDL)    PAPER=27;    paper=envDL;     XDIM="5200";  YDIM="5200"
  458.         set_clipping 140 100    140 100
  459.         ;;
  460. 28|envC5)    PAPER=28;    paper=envC5;     XDIM="7650";  YDIM="5408"
  461.         set_clipping 140 100    140 100
  462.         ;;
  463. 30|envC4)    PAPER=30;    paper=envC4;     XDIM="10818"; YDIM="7654"
  464.         set_clipping 140 100    140 100
  465.         ;;
  466. #34|envB5)    PAPER=34;    paper=envB5;     XDIM="8316";  YDIM="5892"
  467. #        set_clipping 140 100    140 100
  468. #        ;;
  469. 37|envMonarch)    PAPER=37;    paper=envMonarch;XDIM="4650";  YDIM="4500"
  470.         set_clipping 140 100    140 100
  471.         ;;
  472. 257|a6|A6)    PAPER=257;    paper=a6;        XDIM="4961";  YDIM="3496"
  473.         set_clipping 140 100    140 100
  474.         ;;
  475. 258|b6|B6)    PAPER=258;    paper=b6;        XDIM="6048";  YDIM="4300"
  476.         set_clipping 140 100    140 100
  477.         ;;
  478. 259|b5iso|B5iso)
  479.         PAPER=259;    paper=b5iso;     XDIM="8516";  YDIM="5906"
  480.         set_clipping 140 100    140 100
  481.         ;;
  482. 260|env6|"env#6")
  483.         PAPER=260;    paper=env6;     XDIM="4356";  YDIM="3900"
  484.         set_clipping 140 100    140 100
  485. *)        error "Unimplemented paper code $PAPER";;
  486. esac
  487. # e.g. /usr/share/ghostscript/7.07/lib/gs_statd.ps
  488. PAPERSIZE="-sPAPERSIZE=$paper";
  489.  
  490.  
  491. case "$RES" in
  492. 600x600)    XDIM=`expr $XDIM / 2`;;
  493. 1200x600)    ;;
  494. 2400x600)    XDIM=`expr $XDIM \* 2`;;
  495. esac
  496. if [ $ROTATE90 = 1 ]; then
  497.     tmp=$XDIM
  498.     XDIM=$YDIM
  499.     YDIM=$tmp
  500.     case "$RES" in
  501.     600x600)        YDIMpoints=`dc -e "6k $YDIM 600 / 72 *p"`;;
  502.     1200x600)       YDIMpoints=`dc -e "6k $YDIM 1200 / 72 *p"`;;
  503.     2400x600)       YDIMpoints=`dc -e "6k $YDIM 2400 / 72 *p"`;;
  504.     esac
  505. fi
  506. DIM="${XDIM}x${YDIM}"
  507.  
  508. #
  509. # Filter thru psnup if N-up printing has been requested
  510. #
  511. case $NUP in
  512. [234689]|1[024568])    PREFILTER="nup";;
  513. *)            PREFILTER=cat;;
  514. esac
  515. if [ "$DEBUG" -ge 9 ]; then
  516.     PREFILTER="tee /tmp/$BASENAME.ps"
  517. fi
  518.  
  519. #
  520. #    Overload -G.  If the file name ends with ".icm" or ".ICM"
  521. #    then convert the ICC color profile to a Postscript CRD,
  522. #    then prepend it to the users job.  Select the intent
  523. #    using the -I option.
  524. #
  525.  
  526. create_crd() {
  527.     #
  528.     # Create a Postscript CRD
  529.     #
  530.     ICC2PS=$PREFIX/bin/foo2zjs-icc2ps
  531.     if [ -x $ICC2PS ]; then
  532.     case "$GAMMAFILE" in
  533.     none | none.icm | */none.icm)
  534.         ;;
  535.     *)
  536.         $ICC2PS -o $GAMMAFILE -t$INTENT > $ICCTMP.crd.ps 2>$ICCTMP.log \
  537.         || error "Problem converting .ICM file to Postscript"
  538.         ;;
  539.     esac
  540.  
  541.     PSTOPS_OPTS="$PSTOPS_OPTS -c"
  542.     cat > $ICCTMP.usecie.ps <<-EOF
  543.         %!PS-Adobe-3.0
  544.         <</UseCIEColor true>>setpagedevice
  545.     EOF
  546.     if [ "$QUALITY" = wts ]; then
  547.         cat >> $ICCTMP.usecie.ps <<-EOF
  548.         << /UseWTS true >> setuserparams
  549.         <<
  550.             /AccurateScreens true
  551.             /HalftoneType 1
  552.             /HalftoneName (Round Dot Screen) cvn
  553.             /SpotFunction { 180 mul cos exch 180 mul cos add 2 div}
  554.             /Frequency 137
  555.             /Angle 37
  556.         >> sethalftone
  557.         EOF
  558.     fi
  559.     cat > $ICCTMP.selcrd.ps <<-EOF
  560.         /Current /ColorRendering findresource setcolorrendering
  561.     EOF
  562.     case "$GAMMAFILE" in
  563.     none | none.icm | */none.icm) GAMMAFILE="$ICCTMP.usecie.ps";;
  564.     *)    GAMMAFILE="$ICCTMP.usecie.ps $ICCTMP.crd.ps $ICCTMP.selcrd.ps";;
  565.     esac
  566.     else
  567.     GAMMFILE=
  568.     fi
  569. }
  570.  
  571. if [ $DEBUG -gt 0 ]; then
  572.     ICCTMP=/tmp/icc
  573. else
  574.     ICCTMP=/tmp/icc$$
  575. fi
  576.  
  577. if [ "" = "$COLOR" ]; then
  578.     COLORMODE=
  579.     GAMMAFILE=
  580. else
  581.     case "$COLORMODE" in
  582.     default)    COLORMODE=$DEFAULTCOLORMODE;;
  583.     esac
  584.     case "$GAMMAFILE" in
  585.     default)    GAMMAFILE=hpclj2600n-1.icm;;
  586.     esac
  587. fi
  588.  
  589. PSTOPS_OPTS="-n"
  590. if [ $ROTATE90 = 1 ]; then
  591.     PSTOPS_OPTS="$PSTOPS_OPTS -h $YDIMpoints -r"
  592. fi
  593.  
  594. case "$COLORMODE" in
  595. 0|"")
  596.     # Monochrome
  597.     ;;
  598. 10|icm)
  599.     # Use old ICM method
  600.     AIB=-A
  601.     BC=-B
  602.     case "$GAMMAFILE" in
  603.     none | none.icm | */none.icm)
  604.     create_crd
  605.     ;;
  606.     *.icm|*.ICM|*.icc|*.ICC)
  607.     #
  608.     # Its really an .ICM file, not a gamma file.
  609.     #
  610.     # The file can be a full path name, or the name of a file in $SHARE/icm/
  611.     #
  612.         if [ -r "$GAMMAFILE" ]; then
  613.         create_crd
  614.     elif [ -r "$SHARE/icm/$GAMMAFILE" ]; then
  615.         GAMMAFILE="$SHARE/icm/$GAMMAFILE"
  616.         create_crd
  617.     else
  618.         GAMMAFILE=
  619.     fi
  620.     ;;
  621.     esac
  622. esac
  623.  
  624. if [ "$COLOR" != "" -a "$QUALITY" = wts ]; then
  625.     PSTOPS_OPTS="$PSTOPS_OPTS -w"
  626. fi
  627.  
  628. if [ "" != "$COLOR" ]; then
  629.     if [ "" = "$AIB" -a "" = "$BC" ]; then
  630.     # Faster, but can't handle AllIsBlack or BlackClears
  631.     GSDEV=-sDEVICE=pksmraw
  632.     else
  633.     # Can't handle different size pages
  634.     GSDEV=-sDEVICE=bitcmyk
  635.     fi
  636. fi
  637.  
  638. #
  639. #    Figure out USERNAME
  640. #
  641. if [ "$LPUSER" != "" ]; then
  642.     USER="$LPUSER@$LPHOST"
  643. else
  644.     USER=""
  645. fi
  646.  
  647. #
  648. #    Main Program, just cobble together the pipeline and run it
  649. #
  650. #    The malarky with file descriptors 1 and 3 is to avoid a bug in
  651. #    (some versions?) of Ghostscript where Postscript's stdout gets
  652. #    intermingled with the printer drivers output, resulting in
  653. #    corrupted image data.
  654. #
  655. GS="$GSBIN -q -dBATCH -dSAFER -dQUIET -dNOPAUSE"
  656.  
  657. foo2zjs-pstops $PSTOPS_OPTS | \
  658. $PREFILTER \
  659. | ($GS $PAPERSIZE -g$DIM -r$RES $GSDEV $GSOPTS \
  660.     -sOutputFile="|cat 1>&3" $GAMMAFILE -_ >/dev/null 2>/dev/null) 3>&1 \
  661. | foo2oak -r$RES -g$DIM -p$PAPER -m$MEDIA -n$COPIES -d$DUPLEX -s$SOURCE \
  662.         -M$MIRROR $COLOR -b$BPP $CLIP_UL $CLIP_LR $CLIP_LOG \
  663.         -J "$LPJOB" -U "$USER" \
  664.         $BC $AIB $COLOR2MONO -D$DEBUG
  665.  
  666. #
  667. #    Log the command line, for debugging and problem reports
  668. #
  669. if [ -x /usr/bin/logger ]; then
  670.     logger -t "$BASENAME" -p lpr.info -- \
  671.     "$GSBIN $PAPERSIZE -g$DIM -r$RES $GSDEV $GSOPTS $GAMMAFILE"
  672.     logger -t "$BASENAME" -p lpr.info -- \
  673.     "foo2oak -r$RES -g$DIM -p$PAPER -m$MEDIA \
  674. -n$COPIES -d$DUPLEX -s$SOURCE -M$MIRROR $COLOR -b$BPP \
  675. $CLIP_UL $CLIP_LR $CLIP_LOG \
  676. $BC $AIB $COLOR2MONO"
  677. fi
  678.  
  679. #
  680. #    Remove cruft
  681. #
  682. if [ $DEBUG -eq 0 ]; then
  683.     for i in crd.ps log usecie.ps selcrd.ps
  684.     do
  685.     file="$ICCTMP.$i"
  686.     [ -f $file ] && rm -f $file
  687.     done
  688.     [ -f "$TMPFILE" ] && rm -f $TMPFILE
  689. fi
  690.  
  691. exit 0
  692.